Description : The `img-fluid` class ensures responsive images by scaling them properly.
Answer :
Bootstrap's `img-fluid` class makes images responsive by setting the image's max-width to 100% and height to auto. This ensures the image resizes correctly across various screen sizes. Example:`<img src='image.jpg' class='img-fluid' alt='Responsive image'>` will make the image responsive.
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>
Bootstrap's pagination component helps in navigating through multiple pages of content. It is implemented using the `pagination`class:Example:-<nav><ul class='pagination'><li class='page-item'><a class='page-link' href='#'>1</a></li></ul></nav>